home *** CD-ROM | disk | FTP | other *** search
/ Network Support Library / RoseWare - Network Support Library.iso / shells / dosup8.exe / TOKODI.DOC < prev    next >
Text File  |  1993-11-03  |  7KB  |  169 lines

  1. This TOKODI.DOC accompanies DOSUP8.EXE which includes DOS ODI
  2. drivers for IBM Token-Ring and Lan Support NetWare Clients.  The
  3. following file(s) are included:
  4.  
  5.      TOKEN    COM    27381  4-12-93  6:27p
  6.      LANSUP   COM    21943  2-02-93 11:54a
  7.      TOKODI   DOC     (this file)
  8.  
  9. Token.com and lansup.com have been enhanced to include 'Least
  10. Significant Bit' first (LSB) node addresses per the 'IEEE canonical
  11. form' when sending frames above the Data-Link layer.   Previously,
  12. token.com and lansup.com drivers provided 'Most Significant Bit'
  13. first (MSB) only when sending MAC header node address information
  14. above the Data-Link layer.  This LSB ability provides node ID
  15. bit-reversal compatibility with IBM 8209 Bridges. Bit-reversals
  16. take place on all source and destination node addresses 
  17. when 8209 bridges transfer frames from ethernet segments to
  18. token-ring segments unless "IPX Support" has been enabled on the
  19. 8209.  The 8209 will not bit-reverse IPX (E0E003/AAAA03/8137) node
  20. addresses when "IPX Support" has been enabled.  The new LSB feature
  21. of lansup.com and token.com allow compatibility with the 8209
  22. without "IPX Support" enabled.  It is advised only to use the LSB
  23. parameter on the Token- Ring segments with 8209 bit-reversal
  24. enabled.  (see paragraphs below on Bit-Reversals)   
  25.  
  26. Additionally, these drivers provide full compatibility with the
  27. latest IBM locally administered node address standard for
  28. Token-Ring adapters.  In the past, IBM recommended that locally
  29. administered addresses for Token-Ring adapters fall within a range
  30. between and including the following addresses:
  31.  
  32. 4000 0000 0000  to  4000 7FFF FFFF  (HEX)
  33.  
  34. IBM has expanded the range of recommended locally administered
  35. addresses to the following:
  36.  
  37. 4000 0000 0000  to  7FFF FFFF  (HEX)
  38.  
  39. There are some restrictions that apply to the above changes.  Some 
  40. devices and/or programs may only be able to use decimal addresses. 
  41.  
  42. In this case, the following locally administered address range
  43. would be appropriate:
  44.  
  45. 4000 0000 0000  to  7999 9999 9999  (HEX)
  46.  
  47. It is recommended that 'NSSS FLASH N1005' be obtained from IBM for
  48. all details pertaining to the above LAA changes and associated
  49. restrictions.
  50.  
  51.  
  52. ********* USAGE **********
  53. The following NET.CFG file demonstrates the enhanced abilities and
  54. usage of lansup.com and token.com.    Please refer to the Novell
  55. ODI shell for DOS manual (part #100-000871-001) for further
  56. information on individual parameters.  Additional information
  57. regarding implementation of token.com and lansup.com is available
  58. in DOSODIWS.DOC found in DOSUP8.EXE also available on NetWire.
  59.  
  60. Sample NET.CFG  
  61.  
  62. IPX SOCKETS = 20
  63. IPX RETRY COUNT = 20
  64. CACHE BUFFERS = 5
  65. LONG MACHINE TYPE = IBM_PC
  66.  
  67. PROTOCOL ipx
  68.      BIND Token (or Lansup)
  69. LINK DRIVER Token (or Lansup)
  70.      Node Address 444400002D43
  71.      Slot 2
  72.      Frame TOKEN-RING_SNAP LSB 
  73.      SAPS 2
  74.      Link Stations 2
  75.      ALTERNATE
  76.      Max Frame Size = 2168
  77.  
  78.  
  79.  
  80. *********** BIT-REVERSALS ******** 
  81. Bit-reversals are necessary because of the difference between
  82. ethernet adapters and token-ring adapters:
  83.  
  84. Ethernet adapters transmit data onto the wire by transmitting one
  85. byte of data at a time in the following manner:    Each byte of
  86. data is bit-wise right-shifted one bit at a time onto the wire
  87. until all 8 bits of the byte are transmitted onto the wire.  The
  88. next byte of data is then loaded into the transmit register and the
  89. process repeats itself.  The least significant bit, therefore, goes
  90. onto the wire first with ethernet adapters.  
  91.  
  92. Token-Ring adapters do the opposite.  They take one byte of data
  93. and do a bit-wise left-shift one bit at a time onto the wire until
  94. all 8 bits of the byte are transmitted onto the wire.  Another byte
  95. of data is then loaded into the transmit register for transmission.
  96.  
  97. The most significant bit, therefore, goes onto the wire first.  
  98.  
  99. Therefore, the byte 'AA (hex)' on an ethernet wire would appear as
  100. the byte '55 (hex)' on a Token-Ring wire after being bit-reversed
  101. by an IBM 8209 Ethernet to Token-Ring Bridge. 
  102.  
  103.  
  104. ************* TOKODI MODIFICATION HISTORY **************
  105.  
  106. 3-12-91:   Initial release of TOKODIFT.ZIP beta drivers.
  107.  
  108. 6-3-92:    Lansup.com has been updated to allow frame sizes above
  109.            1K during RPL.  A new "OPEN" parameter for the NET.CFG 
  110.            has been added.  This feature allows lansup.com to open 
  111.            the token-ring adapter and set the frame size.  If     
  112.            dxmt0mod.sys is also loading, one of two actions must be
  113.  
  114.            performed:  (1) set "o=n" on the dxmt0mod.sys command  
  115.            argument line in the config.sys and use the "OPEN"     
  116.            parameter for lansup.com in the net.cfg. -or-  (2) Set 
  117.            "o=y" in dxmt0mod.sys command line allowing
  118.            dxmt0mod.sys to open the adapter and set the frame     
  119.            size, and exclude lansup.com's "OPEN" parameter from the
  120.  
  121.            net.cfg.
  122.  
  123.            Use the following net.cfg syntax when using "OPEN":
  124.  
  125.            LINK DRIVER LANSUP
  126.                    OPEN
  127.                    <add other parameters as needed>
  128.  
  129.  
  130. 9/14/92:  Lansup.com has been updated to be compatible with       
  131.           DXME0MOD.sys from IBM Lan Support program v1.30.        
  132.           Token.com has also been updated to work with Odinsup.com 
  133.           where DXME0MOD.SYS V1.30 is involved.
  134.  
  135.           Files included in the previous revision: (Included in  
  136.           TOKODI.ZIP)
  137.  
  138.                LANSUP   COM    21524  6-03-92  9:47a
  139.                TOKODIFT DOC     (this file)
  140.  
  141.           Files also in a previous revision:
  142.  
  143.                TOKEN    COM    23564  8-05-92  2:55p
  144.                LANSUP   COM    21588  8-05-92  2:56p
  145.                TOKODI   DOC     (This File)
  146.  
  147. ************* END OF MODIFICATION HISTORY *********************
  148.  
  149.  
  150. *************************************************************** 
  151.                     DISCLAIMER  
  152.   
  153. Novell, Inc. makes no representations or warranties with respect to
  154. any NetWare software, and specifically disclaims any express or
  155. implied warranties of merchantability, title, or fitness for a
  156. particular purpose.  
  157.  
  158. Distribution of any NetWare software is forbidden without the
  159. express written consent of Novell, Inc.  Further, Novell reserves
  160. the right to discontinue distribution of any NetWare software.
  161.  
  162. Novell is not responsible for lost profits or revenue, loss of use
  163. of the software, loss of data, costs of re-creating lost data, the
  164. cost of any substitute equipment or program, or claims by any party
  165. other than you.  Novell strongly recommends a backup be made before
  166. any software is installed.   Technical support for this software
  167. may be provided at the discretion of Novell.
  168. ***************************************************************
  169.